Where and Order in with() - model relation

  • STEP

    Where

    
               $posts = Post::with(['author' => function ($q){
                            $q->where('name','m');
                        }])
                        ->get();
                    

    Order

    
                    $posts = Post::with(['author' => function ($q){
                            $q->orderBy('name', 'DESC');
                        }])
                        ->get();